home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / sun4.md / devXbus.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  2KB  |  52 lines

  1. /***********************************************************************
  2.  *
  3.  * devXbus.h
  4.  *
  5.  *    Include file detailing the exports from the xbus driver module
  6.  *    to the rest of the dev module.
  7.  *
  8.  * Copyright 1992 Regents of the University of California
  9.  * Permission to use, copy, modify, and distribute this
  10.  * software and its documentation for any purpose and without
  11.  * fee is hereby granted, provided that the above copyright
  12.  * notice appear in all copies.  The University of California
  13.  * makes no representations about the suitability of this
  14.  * software for any purpose.  It is provided "as is" without
  15.  * express or implied warranty.
  16.  *
  17.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/sun4.md/devXbus.h,v 9.2 92/10/23 15:04:44 elm Exp $
  18.  *
  19.  ***********************************************************************
  20.  */
  21.  
  22. #ifndef _DEV_XBUS_
  23. #define    _DEV_XBUS_
  24.  
  25. #include <dev/xbus.h>
  26.  
  27. #define    Dev_XbusAddressBase(boardId)    ((boardId) << DEV_XBUS_ID_ADDR_SHIFT)
  28.  
  29. extern ClientData    DevXbusInit _ARGS_((DevConfigController *ctrlPtr));
  30.  
  31. extern ReturnStatus    DevXbusIOControl _ARGS_((Fs_Device *devicePtr,
  32.                 Fs_IOCParam *ioctlPtr, Fs_IOReply *replyPtr));
  33. extern ReturnStatus    DevXbusOpen _ARGS_((Fs_Device *devicePtr, int useFlags,
  34.                         Fs_NotifyToken notifyToken,
  35.                         int *flagsPtr));
  36. extern Boolean        DevXbusIntr _ARGS_((ClientData data));
  37.  
  38. extern ReturnStatus    Dev_XbusXor _ARGS_((unsigned int boardId,
  39.                         unsigned int destBuf,
  40.                         unsigned int numBufs,
  41.                         unsigned int* bufArrayPtr,
  42.                         unsigned int bufLen,
  43.                         void (*callbackProc)(),
  44.                         ClientData clientData));
  45. extern ReturnStatus    Dev_XbusHippiBuffer _ARGS_((int boardNum,
  46.                             int which,
  47.                             unsigned int size,
  48.                             unsigned int addr));
  49.  
  50.  
  51. #endif    /* _DEV_XBUS_ */
  52.